home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: Introduction / Keystone Learning Introduction to XML.iso / Sample Files / chapter 3 / namespaces.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-12-04  |  436 b   |  20 lines

  1. <?xml version="1.0"?>
  2.  
  3. <products xmlns:mine="http://www.mine.com"
  4.       xmlns:theirs="http://www.theirs.com">
  5.  
  6.     <mine:product>
  7.         <mine:name>The Juice Tiger</mine:name>
  8.         <mine:price>$49.95</mine:price>
  9.         <theirs:price>$54.95</theirs:price>
  10.     </mine:product>
  11.  
  12.     <mine:product>
  13.         <mine:name>The Salad Shooter</mine:name>
  14.         <mine:price>$35.95</mine:price>
  15.         <theirs:price>$38.95</theirs:price>
  16.     </mine:product>
  17.  
  18. </products>
  19.  
  20.